From 60f0445233631c0d3428ec6dca4b38e3a8fcf8f6 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 22 Aug 2014 10:15:44 -0400 Subject: [PATCH] Printing: Better typography Use U+007D MULTPLICATION SIGN for dimensions. https://bugzilla.gnome.org/show_bug.cgi?id=735192 --- modules/printbackends/cups/gtkprintbackendcups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/printbackends/cups/gtkprintbackendcups.c b/modules/printbackends/cups/gtkprintbackendcups.c index 06c1e68686..fb0d6a015f 100644 --- a/modules/printbackends/cups/gtkprintbackendcups.c +++ b/modules/printbackends/cups/gtkprintbackendcups.c @@ -5114,7 +5114,7 @@ cups_printer_get_options (GtkPrinter *printer, * the width and height in points. E.g: "Custom * 230.4x142.9" */ - custom_name = g_strdup_printf (_("Custom %sx%s"), width, height); + custom_name = g_strdup_printf (_("Custom %s×%s"), width, height); strncpy (option->defchoice, custom_name, PPD_MAX_NAME); g_free (custom_name); } -- 2.30.2